home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 27.zip / BS1 part 27 / HiSoftBasicD1.adf / devs / mountlist < prev    next >
Text File  |  1989-03-21  |  4KB  |  152 lines

  1. /* Sample Mountlist Entry to add another partition to a ST-506 drive */
  2. P2:        Device = hddisk.device
  3.            Unit   = 1
  4.            Flags  = 0
  5.            Surfaces  = 4
  6.            BlocksPerTrack = 17
  7.            Reserved = 2
  8.            Interleave = 0
  9.            LowCyl = 300  ;  HighCyl = 601
  10.            Buffers = 20
  11.       BufMemType = 0
  12. #
  13. /* SCSI drives are units 3 and up */
  14. RES2:     Device = hddisk.device
  15.            Unit   = 3
  16.            Flags  = 0
  17.            Surfaces  = 4
  18.            BlocksPerTrack = 17
  19.            Reserved = 0
  20.            Interleave = 0
  21.            LowCyl = 0  ;  HighCyl = 1
  22.            Buffers = 5
  23.       BufMemType = 0
  24. #
  25. /* ST-506 hard disk drives are units 1 and 2 */
  26. RES0:      Device = hddisk.device
  27.            Unit   = 1
  28.            Flags  = 0
  29.            Surfaces  = 4
  30.            BlocksPerTrack = 17
  31.            Reserved = 0
  32.            Interleave = 0
  33.            LowCyl = 0  ;  HighCyl = 1
  34.            Buffers = 1
  35.            BufMemType = 0
  36. #
  37. /* MountList for V1.3 */
  38.  
  39. /*  Mount Entry for the new Console Handler */
  40.  
  41. NEWCON: 
  42.     Handler = L:Newcon-Handler
  43.     Priority = 5
  44.     StackSize = 1000
  45. #
  46.  
  47. /* This is an example of a non-filing system mount using a handler written
  48.    in C.
  49. */
  50.  
  51. SPEAK:     
  52.     Handler = L:Speak-Handler
  53.     Stacksize = 6000
  54.     Priority = 5
  55.     GlobVec = -1
  56. #
  57.  
  58. /*  This is an example of an alternative type of non-filing device mount,
  59.     used to mount the non-buffered serial handler
  60. */
  61.  
  62. AUX:
  63.     Handler = L:Aux-Handler
  64.     Stacksize = 1000
  65.     Priority = 5
  66. #
  67. /*  This is a non-filing system device */
  68.  
  69. PIPE:      
  70.     Handler = L:Pipe-Handler
  71.     Stacksize = 6000
  72.     Priority = 5
  73.     GlobVec = -1
  74. #
  75.  
  76. /* This is an example of a mount list entry for using the recoverable 
  77.    ram disk.  Depending on the amount of memory you wish to devote to
  78.    it, you may want to change the HighCyl value.
  79. */
  80.  
  81. RAD:       Device = ramdrive.device
  82.            Unit   = 0
  83.            Flags  = 0
  84.            Surfaces  = 2
  85.            BlocksPerTrack = 11
  86.            Reserved = 2
  87.            Interleave = 0
  88.            LowCyl = 0  ;  HighCyl = 21
  89.            Buffers = 5
  90.            BufMemType = 1
  91. #
  92.  
  93. /* Mount a 5.25" disk drive to be mounted as DF2: */
  94.  
  95. DF2:       Device = trackdisk.device
  96.            Unit   = 2
  97.            Flags  = 1
  98.            Surfaces  = 2
  99.            BlocksPerTrack = 11
  100.            Reserved = 2
  101.            Interleave = 0
  102.            LowCyl = 0  ;  HighCyl = 39
  103.            Buffers = 20
  104.            BufMemType = 3
  105. #
  106.  
  107. /* An example mount entry using the fast file system with a partition
  108.    of the hard disk using the 2090 disk controller.  PREP has been
  109.    used to create the first partition (up to cylinder 20).  The second
  110.    partition is MOUNTed, using the following entry:
  111.    NOTE: Some hard disk drivers require more stack than specified here.
  112.    Some may required less.
  113.    (The hard disk is not included; this is only an example.)
  114. */
  115.  
  116. FAST:
  117.     Device = hddisk.device
  118.     FileSystem = l:FastFileSystem
  119.     Unit   = 1
  120.     Flags  = 0
  121.     Surfaces  = 4
  122.     BlocksPerTrack = 17
  123.     Reserved = 2
  124.     Interleave = 0
  125.     LowCyl = 2  ;  HighCyl = 601
  126.     Buffers = 30
  127.     GlobVec = -1
  128.     BufMemType = 1
  129.     Mount = 1
  130.     DosType = 0x444F5301
  131.     StackSize = 4000
  132. #
  133.  
  134. /* Let's say you have an A2000 with an internal drive, and an external
  135.    drive, and you want to refer to the external drive as DF1: as well
  136.    as DF2:   Well, this MountList entry will do it for you.  This technique
  137.    can be extended to provide you with a drive A: and B: if you really
  138.    want.
  139. */
  140.  
  141. DF1:       Device = trackdisk.device
  142.            Unit   = 2
  143.            Flags  = 1
  144.            Surfaces  = 2
  145.            BlocksPerTrack = 11
  146.            Reserved = 2
  147.            Interleave = 0
  148.            LowCyl = 0  ;  HighCyl = 79
  149.            Buffers = 20
  150.            BufMemType = 3
  151. #
  152.